home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Info-Mac 4
/
Info_Mac IV CD-ROM (Pacific HiTech Inc.)(August 1994).iso
/
Development
/
Source
/
Telnet 2.6.1d1 4⁄26⁄94 Folder
/
source
/
vr
/
vdevice.h
< prev
next >
Wrap
Text File
|
1993-06-22
|
440b
|
18 lines
#ifndef VDEVS
#define VDEVS
/*
* Virtual device record.
* Defines the handles and hooks required for the vdevice code.
*/
typedef struct {
GDHandle vgd; /* GDevice created off-screen */
CGrafPort vport; /* Virtual port created in the GDevice */
unsigned char *bp; /* base pointer of data in the virtual device */
Rect bounds; /* boundary rectangle for vdevice */
} VDevice, *VDevicePtr;
#endif
#include "vdevice.proto.h"